home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Application Events / SuspendEvent.cp < prev    next >
Text File  |  1997-06-28  |  276b  |  18 lines

  1. // SuspendEvent.cp
  2.  
  3. #ifndef SuspendEvent_h
  4. #include "SuspendEvent.h"
  5. #endif
  6. #ifndef RootFocus_h
  7. #include "RootFocus.h"
  8. #endif
  9. #ifndef UserState_h
  10. #include "UserState.h"
  11. #endif
  12.  
  13. void SuspendEvent::Respond() const
  14.   {
  15.     RootFocus::Deactivate();
  16.     UserState::The().Announce();
  17.   }
  18.